home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Programming / fpc / doc / ref / img224.gif < prev    next >
Graphics Interchange Format  |  1998-09-25  |  4KB  |  395x394  |  1-bit (2 colors)
Labels: black | darkness
OCR: interface Procedure First (n longint ); Procedure Second ; implementation Procedure First (n: longint); forward; Procedure Second; begin WriteLn('In second. Calling first...'); First (1); -end; Procedure First (n: longint); begin WriteLn('First received ,n); -end; end.